2 using System.Collections.Generic;
5 using Microsoft.Xna.Framework.Graphics;
7 namespace SuperPolarity
12 static List<Actor> Actors;
16 Actors = new List<Actor>();
19 static public void CheckIn(Actor actor)
24 static public void CheckOut(Actor actor)
29 static public void Draw(SpriteBatch spriteBatch)
31 foreach (Actor actor in Actors)
33 actor.Draw(spriteBatch);